Compare commits

...

3 commits

Author SHA1 Message Date
Jay Looney
f2d2b00fe7 fix: typo 2025-11-26 00:51:48 -06:00
Jay Looney
3353c91517 fix: missing semicolon 2025-11-25 23:20:43 -06:00
Jay Looney
ca7511dc82 fix: re-add missing cobalt host definition 2025-11-25 23:19:26 -06:00
3 changed files with 48 additions and 2 deletions

42
flake.lock generated
View file

@ -361,6 +361,26 @@
"type": "github" "type": "github"
} }
}, },
"noctalia": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1764122160,
"narHash": "sha256-JZ51AW7zKgqlZp+oqt3Y7thglv23TPjgG1XiGBFWhr8=",
"owner": "noctalia-dev",
"repo": "noctalia-shell",
"rev": "3c5dfd87db582bf9056d83f41d53b90ba08023c6",
"type": "github"
},
"original": {
"owner": "noctalia-dev",
"repo": "noctalia-shell",
"type": "github"
}
},
"nur": { "nur": {
"inputs": { "inputs": {
"flake-parts": [ "flake-parts": [
@ -436,6 +456,26 @@
"type": "github" "type": "github"
} }
}, },
"quickshell": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1764045583,
"narHash": "sha256-W24ReyRrhOKTKIsuAMkY5hnVlCufGoONM79sjUoyQkk=",
"owner": "outfoxxed",
"repo": "quickshell",
"rev": "e9bad67619ee9937a1bbecfc6ad3b4231d2ecdc3",
"type": "github"
},
"original": {
"owner": "outfoxxed",
"repo": "quickshell",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"disko": "disko", "disko": "disko",
@ -443,7 +483,9 @@
"lanzaboote": "lanzaboote", "lanzaboote": "lanzaboote",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"noctalia": "noctalia",
"nvf": "nvf", "nvf": "nvf",
"quickshell": "quickshell",
"sops-nix": "sops-nix", "sops-nix": "sops-nix",
"stylix": "stylix" "stylix": "stylix"
} }

View file

@ -99,6 +99,10 @@
stylix.nixosModules.stylix stylix.nixosModules.stylix
]; ];
}; };
cobalt = mkSystem {
hostname = "cobalt";
users = [ "jml" ];
};
# `nix build .#nixosConfigurations.installIso.config.system.build.isoImage` # `nix build .#nixosConfigurations.installIso.config.system.build.isoImage`
# https://github.com/nix-community/nixos-generators # https://github.com/nix-community/nixos-generators
installIso = nixpkgs.lib.nixosSystem { installIso = nixpkgs.lib.nixosSystem {

View file

@ -9,13 +9,13 @@
# And what I actually want to try out is one of DankMaterialShell or Noctalia # And what I actually want to try out is one of DankMaterialShell or Noctalia
programs.niri.enable = true; programs.niri.enable = true;
environments.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
inputs.noctalia.packages.${system}.default inputs.noctalia.packages.${system}.default
xwayland-satellite xwayland-satellite
fuzzel fuzzel
kitty kitty
fastfetch fastfetch
] ];
# Notification Daemon # Notification Daemon
#services.mako.enable = true; #services.mako.enable = true;