fixed stuff from previous step
This commit is contained in:
parent
3e5774ff8d
commit
4170fcfba5
1 changed files with 2 additions and 9 deletions
|
@ -15,16 +15,9 @@
|
||||||
outputs = {nixpkgs, home-manager, ...}:
|
outputs = {nixpkgs, home-manager, ...}:
|
||||||
let
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
pkgs = import nixpkgs {
|
|
||||||
inherit system;
|
|
||||||
|
|
||||||
config = {
|
|
||||||
allowUnfree = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations.nixdesktop = pkgs.lib.nixosSystem {
|
nixosConfigurations.nixdesktop = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit system; };
|
specialArgs = { inherit system; };
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
|
@ -37,7 +30,7 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
nixConfigurations.nixsurface = pkgs.lib.nixosSystem {
|
nixConfigurations.nixsurface = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit system; };
|
specialArgs = { inherit system; };
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
|
|
Loading…
Add table
Reference in a new issue