Flake cleanup
This commit is contained in:
parent
b75cb134a7
commit
a0d460ca40
4 changed files with 14 additions and 9 deletions
14
flake.nix
14
flake.nix
|
|
@ -148,7 +148,7 @@
|
|||
|
||||
thorConfig = {
|
||||
nixosConfigurations = {
|
||||
thor = nixpkgs.lib.nixosSystem rec {
|
||||
thor = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = commonModules ++ [
|
||||
{ nixpkgs.config = config // { cudaSupport = true; }; }
|
||||
|
|
@ -189,7 +189,7 @@
|
|||
];
|
||||
in
|
||||
rec {
|
||||
odin-nvidia = nixpkgs.lib.nixosSystem rec {
|
||||
odin-nvidia = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = commonModules ++ odinCommonModules ++ [
|
||||
{ nixpkgs.config = config // { cudaSupport = true; }; }
|
||||
|
|
@ -197,7 +197,7 @@
|
|||
];
|
||||
};
|
||||
|
||||
odin-intel = nixpkgs.lib.nixosSystem rec {
|
||||
odin-intel = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = commonModules ++ odinCommonModules ++ [
|
||||
./odin/configuration-intel.nix
|
||||
|
|
@ -223,8 +223,8 @@
|
|||
# };
|
||||
|
||||
baldurConfig = {
|
||||
nixosConfigurations = rec {
|
||||
baldur = nixpkgs.lib.nixosSystem rec {
|
||||
nixosConfigurations = {
|
||||
baldur = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = commonModules ++ [
|
||||
./baldur/hardware-configuration.nix
|
||||
|
|
@ -237,8 +237,8 @@
|
|||
};
|
||||
|
||||
lokiConfig = {
|
||||
nixosConfigurations = rec {
|
||||
loki = nixpkgs.lib.nixosSystem rec {
|
||||
nixosConfigurations = {
|
||||
loki = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = commonModules ++ [
|
||||
nixos-hardware.nixosModules.common-cpu-intel
|
||||
|
|
|
|||
|
|
@ -5,5 +5,11 @@
|
|||
"odin:ClRXzxmDZl2Y94SG4YlWXGiJDY4L9DgZq/3OLR5+i6k="
|
||||
"loki:HN1P2nXzIkqitl95MvjcSHxtDo7Ao+I8M8U/RqQLC5k="
|
||||
];
|
||||
|
||||
# substituters = [
|
||||
# "ssh-ng://thor.local"
|
||||
# "ssh-ng://odin.local"
|
||||
# "ssh-ng://loki.local"
|
||||
# ];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -40,7 +40,6 @@
|
|||
krita
|
||||
# lutris
|
||||
meld
|
||||
mendeley
|
||||
# minecraft
|
||||
# mycrypto
|
||||
openvpn
|
||||
|
|
@ -135,6 +134,7 @@
|
|||
../hm_modules/polybar.nix
|
||||
# ../hm_modules/pro_audio.nix
|
||||
# ../hm_modules/pycharm.nix
|
||||
../hm_modules/research.nix
|
||||
../hm_modules/rofi.nix
|
||||
# ../hm_modules/screen_locker.nix
|
||||
# ../hm_modules/security.nix
|
||||
|
|
|
|||
|
|
@ -43,7 +43,6 @@
|
|||
krita
|
||||
# lutris
|
||||
meld
|
||||
mendeley
|
||||
# minecraft
|
||||
# mycrypto
|
||||
openvpn
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue