diff options
-rw-r--r-- | options.nix | 2 | ||||
-rw-r--r-- | programs/astal/default.nix | 15 | ||||
-rw-r--r-- | programs/default.nix | 1 | ||||
-rw-r--r-- | programs/unofficial-homestuck-collection/default.nix | 2 | ||||
-rw-r--r-- | programs/waybar/default.nix | 2 |
5 files changed, 19 insertions, 3 deletions
diff --git a/options.nix b/options.nix index fb45323..df80b7b 100644 --- a/options.nix +++ b/options.nix @@ -28,7 +28,7 @@ # programs to auto run in gui autoRun = [ - "waybar" + "astal" "thunderbird" "discord --enable-features=UseOzonePlatform --ozone-platform=wayland" "element-desktop --enable-features=UseOzonePlatform --ozone-platform=wayland" diff --git a/programs/astal/default.nix b/programs/astal/default.nix new file mode 100644 index 0000000..4c5cbb8 --- /dev/null +++ b/programs/astal/default.nix @@ -0,0 +1,15 @@ +{ + config, + pkgs, + inputs, + ... +}: let + system = pkgs.stdenv.hostPlatform.system; + astal = inputs.self.packages.${system}; +in { + home-manager.users.${config.user} = { + home.packages = [ + astal.astal + ]; + }; +} diff --git a/programs/default.nix b/programs/default.nix index 96d96ce..fe3d83e 100644 --- a/programs/default.nix +++ b/programs/default.nix @@ -1,5 +1,6 @@ {...}: { imports = [ + ./astal ./firefox ./git ./gpg diff --git a/programs/unofficial-homestuck-collection/default.nix b/programs/unofficial-homestuck-collection/default.nix index 7b66917..834bc5c 100644 --- a/programs/unofficial-homestuck-collection/default.nix +++ b/programs/unofficial-homestuck-collection/default.nix @@ -5,7 +5,7 @@ ... }: let system = pkgs.stdenv.hostPlatform.system; - unofficial-homestuck-collection = inputs.unofficial-homestuck-collection.packages.${system}; + unofficial-homestuck-collection = inputs.self.packages.${system}; in { home-manager.users.${config.user} = { home.packages = [ diff --git a/programs/waybar/default.nix b/programs/waybar/default.nix index fe68cd7..7602a82 100644 --- a/programs/waybar/default.nix +++ b/programs/waybar/default.nix @@ -5,7 +5,7 @@ }: { home-manager.users.${config.user} = { programs.waybar = { - enable = true; + enable = false; # using astal now settings = [ { |