feat(work): add specific configuration
This commit is contained in:
parent
5994859096
commit
630daabbd8
3 changed files with 30 additions and 16 deletions
|
@ -91,9 +91,15 @@ in {
|
||||||
hostname = "rick";
|
hostname = "rick";
|
||||||
username = "ephase";
|
username = "ephase";
|
||||||
};
|
};
|
||||||
|
modules = [
|
||||||
|
./home-manager/default.nix
|
||||||
|
];
|
||||||
};
|
};
|
||||||
work = home-manager.lib.homeManagerConfiguration {
|
work = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
pkgs = import nixpkgs {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
overlays = [ nixgl.overlay ];
|
||||||
|
};
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
inherit stateVersion inputs;
|
inherit stateVersion inputs;
|
||||||
hostname = "yorick-Latitude-7320";
|
hostname = "yorick-Latitude-7320";
|
||||||
|
|
|
@ -17,21 +17,9 @@
|
||||||
vifm.enable = true;
|
vifm.enable = true;
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
};
|
};
|
||||||
video = {
|
web.firefox = {
|
||||||
kdenlive.enable = false;
|
enable = true;
|
||||||
mpv.enable = false;
|
enableNixGL = true;
|
||||||
};
|
|
||||||
web.firefox.enable = true;
|
|
||||||
web.qutebrowser.enable = false;
|
|
||||||
web.webcord.enable = false;
|
|
||||||
gaming.lutris.enable = false;
|
|
||||||
desktop.sway = {
|
|
||||||
enable = false;
|
|
||||||
kanshi = false;
|
|
||||||
waybar = {
|
|
||||||
laptop = false;
|
|
||||||
gpuThermal.enable = false;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
20
hosts/yorick-Latitude-7320/includes/home-manager.nix
Normal file
20
hosts/yorick-Latitude-7320/includes/home-manager.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
dejavu_fonts
|
||||||
|
font-awesome
|
||||||
|
lato
|
||||||
|
liberation_ttf
|
||||||
|
libertine
|
||||||
|
libnotify
|
||||||
|
(nerdfonts.override {
|
||||||
|
fonts = [
|
||||||
|
"FiraCode"
|
||||||
|
];
|
||||||
|
})
|
||||||
|
noto-fonts-emoji
|
||||||
|
noto-fonts-cjk
|
||||||
|
slurp
|
||||||
|
wl-clipboard
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue