getting there
This commit is contained in:
parent
02545a51e9
commit
52f9b876b5
2 changed files with 71 additions and 1 deletions
15
flake.nix
15
flake.nix
|
|
@ -10,6 +10,19 @@
|
|||
outputs = { self, nixpkgs, home-manager, ... }@inputs: {
|
||||
|
||||
nixosConfigurations = {
|
||||
nova = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
{
|
||||
services.xserver.enable = true;
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
networking.hostName = "nova";
|
||||
}
|
||||
./system
|
||||
./system/hardware-nova.nix
|
||||
];
|
||||
};
|
||||
romulus = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
|
|
@ -27,7 +40,7 @@
|
|||
};
|
||||
|
||||
homeConfigurations = {
|
||||
"till@romulus" = home-manager.lib.homeManagerConfiguration {
|
||||
till = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue