wip: dnsc-machine setup
This commit is contained in:
parent
ffe035cc63
commit
2760b06666
2 changed files with 11 additions and 9 deletions
12
flake.nix
12
flake.nix
|
|
@ -40,7 +40,6 @@
|
|||
in
|
||||
{
|
||||
# Custom nixosModules
|
||||
nixosModules.base = import ./modules/base;
|
||||
nixosModules.macos = import ./modules/macos;
|
||||
nixosModules.homebrew = import ./modules/homebrew;
|
||||
nixosModules.aerospace = import ./modules/aerospace;
|
||||
|
|
@ -69,6 +68,17 @@
|
|||
nixosConfigurations.dnsc-machine = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs outputs; };
|
||||
pkgs = import nixpkgs {
|
||||
system = "x86_64-linux";
|
||||
overlays = [
|
||||
self.overlays.default
|
||||
inputs.zellij-switch.overlays.default
|
||||
];
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
allowUnsupportedSystem = true;
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
./hosts/dnsc-machine
|
||||
];
|
||||
|
|
|
|||
|
|
@ -24,14 +24,6 @@
|
|||
outputs.nixosModules.steam
|
||||
];
|
||||
|
||||
# Device specific overlays
|
||||
# Overlays for all devices are defined
|
||||
# in flake.nix
|
||||
nixpkgs.overlays = [
|
||||
outputs.self.overlays.default
|
||||
inputs.zellij-switch.overlays.default
|
||||
];
|
||||
|
||||
# General settings
|
||||
networking.hostName = "dnsc-machine";
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue