Compare commits
2 commits
6d93a61e8c
...
8cd3a19ed1
| Author | SHA1 | Date | |
|---|---|---|---|
| 8cd3a19ed1 | |||
| 669a9bb009 |
1 changed files with 12 additions and 15 deletions
27
flake.nix
27
flake.nix
|
|
@ -38,23 +38,20 @@
|
|||
{
|
||||
nixosConfigurations = {
|
||||
plexy = nixpkgs.lib.nixosSystem {
|
||||
specialArgs =
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
in
|
||||
{
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
pkgs-unstable = import nixpkgs-unstable {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
};
|
||||
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/plexy
|
||||
{
|
||||
nixpkgs = {
|
||||
overlays = [
|
||||
(final: prev: {
|
||||
unstable = import nixpkgs-unstable {
|
||||
system = final.system;
|
||||
};
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue