mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 16:21:34 +01:00
Add new host
This commit is contained in:
parent
57f4f7a7df
commit
943576db67
7 changed files with 155 additions and 1 deletions
37
hosts/seb-desktop/default.nix
Normal file
37
hosts/seb-desktop/default.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../default.nix
|
||||
./hardware.nix
|
||||
|
||||
inputs.disko.nixosModules.default
|
||||
./disko.nix
|
||||
];
|
||||
|
||||
networking.hostName = "seb-desktop";
|
||||
|
||||
environment.sessionVariables.FLAKE = "/home/seb/Projects/nixos/my-config";
|
||||
|
||||
myConfig = {
|
||||
boot-loader.systemd-boot.enable = true;
|
||||
|
||||
dm.lightdm.enable = true;
|
||||
de.qtile.enable = true;
|
||||
|
||||
sound.pipewire.enable = true;
|
||||
auto-gc.enable = true;
|
||||
vm.qemu.enable = true;
|
||||
flatpak.enable = true;
|
||||
vpn.lgs.enable = true;
|
||||
comma.enable = true;
|
||||
sops.enable = true;
|
||||
nix-helper.enable = true;
|
||||
printing.enable = true;
|
||||
};
|
||||
|
||||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
services.gvfs.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue