Move common gui packages into separate expression
This commit is contained in:
parent
67e7a7caa0
commit
8f2890fc76
|
@ -1,6 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
./home/common.nix
|
||||
./home/messaging.nix
|
||||
./home/dev.nix
|
||||
./home/nomachine.nix
|
||||
./home/python310.nix
|
||||
|
@ -11,7 +12,7 @@
|
|||
home.homeDirectory = "/home/elitherl";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
microsoft-edge
|
||||
teams
|
||||
];
|
||||
|
||||
programs.git = {
|
||||
|
|
|
@ -12,12 +12,6 @@
|
|||
home.username = "xenia";
|
||||
home.homeDirectory = "/home/xenia";
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
firefox
|
||||
];
|
||||
|
||||
programs.git = {
|
||||
userEmail = "evie@xenia.me.uk";
|
||||
};
|
||||
|
|
|
@ -27,9 +27,4 @@
|
|||
enableFishIntegration = true;
|
||||
settings = builtins.fromTOML (builtins.readFile ./config/starship.toml);
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
wezterm
|
||||
bitwarden
|
||||
];
|
||||
}
|
||||
|
|
7
nixos/home/gui.nix
Normal file
7
nixos/home/gui.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
wezterm
|
||||
firefox
|
||||
bitwarden
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue