From eba10ec467871612146075777e9a5710bf9f52b9 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 14 Nov 2023 17:40:57 -0700 Subject: [PATCH] Update shepard flake --- systems/x86_64/shepard/flake.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/systems/x86_64/shepard/flake.nix b/systems/x86_64/shepard/flake.nix index 77d0146..4e9d322 100644 --- a/systems/x86_64/shepard/flake.nix +++ b/systems/x86_64/shepard/flake.nix @@ -10,7 +10,7 @@ nixos-hardware.url = "github:NixOS/nixos-hardware/master"; }; - outputs = { self, nixpkgs, nixos-hardware, ... }@inputs: { + outputs = { self, nixpkgs, home-manager, nixos-hardware, ... }@inputs: { nixosConfigurations = { "shepard" = nixpkgs.lib.nixosSystem { system = "aarch64-linux"; @@ -20,6 +20,7 @@ # nixos-hardware.nixosModules.raspberry-pi-4 # ./configuration.nix ./hardware-configuration.nix + ./gnome.nix ({config, pkgs, ...}: { @@ -82,6 +83,11 @@ isNormalUser = true; shell = pkgs.fish; hashedPassword = "$6$aAcbLtqiqzySifls$jdKMOQjoWITHD/dWNNZVUH/qNc6aoJ7v4zYofi0U7IJSVTbmOfChS3mzaJbp57AodjdPNKPrnrip8Nlh2Qanx."; + + packages = with pkgs; [ + signal-desktop + youtube-music + ]; }; programs.fish.enable = true;