pinned nixpkgs version
This commit is contained in:
parent
0f572a9f85
commit
a266ab201f
2 changed files with 8 additions and 2 deletions
|
|
@ -6,6 +6,8 @@
|
|||
"flakes"
|
||||
];
|
||||
|
||||
nix.registry.nixpkgs.flake = inputs.nixpkgs;
|
||||
|
||||
# Bootloader.
|
||||
boot.loader = {
|
||||
efi.canTouchEfiVariables = true;
|
||||
|
|
|
|||
|
|
@ -19,7 +19,9 @@
|
|||
};
|
||||
laptop-x11 = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = let inputs.x11mode = true; in { inherit inputs; };
|
||||
specialArgs = {
|
||||
inputs = inputs // { x11mode = true; };
|
||||
};
|
||||
modules = [
|
||||
./configuration.nix
|
||||
./hardware_configuration.nix
|
||||
|
|
@ -28,7 +30,9 @@
|
|||
};
|
||||
laptop-wayland = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = let inputs.x11mode = false; in { inherit inputs; };
|
||||
specialArgs = {
|
||||
inputs = inputs // { x11mode = false; };
|
||||
};
|
||||
modules = [
|
||||
./configuration.nix
|
||||
./hardware_configuration.nix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue