Update shepard flake

This commit is contained in:
Aaron Honeycutt 2023-11-14 17:40:57 -07:00
parent c72fd96476
commit eba10ec467

View file

@ -10,7 +10,7 @@
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";
}; };
outputs = { self, nixpkgs, nixos-hardware, ... }@inputs: { outputs = { self, nixpkgs, home-manager, nixos-hardware, ... }@inputs: {
nixosConfigurations = { nixosConfigurations = {
"shepard" = nixpkgs.lib.nixosSystem { "shepard" = nixpkgs.lib.nixosSystem {
system = "aarch64-linux"; system = "aarch64-linux";
@ -20,6 +20,7 @@
# nixos-hardware.nixosModules.raspberry-pi-4 # nixos-hardware.nixosModules.raspberry-pi-4
# ./configuration.nix # ./configuration.nix
./hardware-configuration.nix ./hardware-configuration.nix
./gnome.nix
({config, pkgs, ...}: { ({config, pkgs, ...}: {
@ -82,6 +83,11 @@
isNormalUser = true; isNormalUser = true;
shell = pkgs.fish; shell = pkgs.fish;
hashedPassword = "$6$aAcbLtqiqzySifls$jdKMOQjoWITHD/dWNNZVUH/qNc6aoJ7v4zYofi0U7IJSVTbmOfChS3mzaJbp57AodjdPNKPrnrip8Nlh2Qanx."; hashedPassword = "$6$aAcbLtqiqzySifls$jdKMOQjoWITHD/dWNNZVUH/qNc6aoJ7v4zYofi0U7IJSVTbmOfChS3mzaJbp57AodjdPNKPrnrip8Nlh2Qanx.";
packages = with pkgs; [
signal-desktop
youtube-music
];
}; };
programs.fish.enable = true; programs.fish.enable = true;