Move common gui packages into separate expression

This commit is contained in:
Evie Litherland-Smith 2023-03-29 11:48:42 +01:00
parent 67e7a7caa0
commit 8f2890fc76
4 changed files with 9 additions and 12 deletions

View file

@ -1,6 +1,7 @@
{ pkgs, ... }: { { pkgs, ... }: {
imports = [ imports = [
./home/common.nix ./home/common.nix
./home/messaging.nix
./home/dev.nix ./home/dev.nix
./home/nomachine.nix ./home/nomachine.nix
./home/python310.nix ./home/python310.nix
@ -11,7 +12,7 @@
home.homeDirectory = "/home/elitherl"; home.homeDirectory = "/home/elitherl";
home.packages = with pkgs; [ home.packages = with pkgs; [
microsoft-edge teams
]; ];
programs.git = { programs.git = {

View file

@ -12,12 +12,6 @@
home.username = "xenia"; home.username = "xenia";
home.homeDirectory = "/home/xenia"; home.homeDirectory = "/home/xenia";
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
firefox
];
programs.git = { programs.git = {
userEmail = "evie@xenia.me.uk"; userEmail = "evie@xenia.me.uk";
}; };

View file

@ -27,9 +27,4 @@
enableFishIntegration = true; enableFishIntegration = true;
settings = builtins.fromTOML (builtins.readFile ./config/starship.toml); settings = builtins.fromTOML (builtins.readFile ./config/starship.toml);
}; };
home.packages = with pkgs; [
wezterm
bitwarden
];
} }

7
nixos/home/gui.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
wezterm
firefox
bitwarden
];
}