summaryrefslogtreecommitdiffstats
path: root/hosts/thinklappi/thinklappi.nix
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-04-20 18:25:45 +0200
committersils <sils@sils.li>2023-04-20 18:31:19 +0200
commit8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4 (patch)
treebd77dade79e8c7e6f6f3a136d53fd5518d9ffcb9 /hosts/thinklappi/thinklappi.nix
parentFeat(packages.nix): Add pinentry (diff)
downloadnix-config-8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4.zip
Feat(structure): Restructured repository
This is mainly convenience and my personal preference.
Diffstat (limited to 'hosts/thinklappi/thinklappi.nix')
-rw-r--r--hosts/thinklappi/thinklappi.nix70
1 files changed, 0 insertions, 70 deletions
diff --git a/hosts/thinklappi/thinklappi.nix b/hosts/thinklappi/thinklappi.nix
deleted file mode 100644
index 05909b9..0000000
--- a/hosts/thinklappi/thinklappi.nix
+++ /dev/null
@@ -1,70 +0,0 @@
-{
- config,
- pkgs,
- ...
-}: let
- compiledLayout = pkgs.runCommand "keyboard-layout" {} ''
- ${pkgs.xorg.xkbcomp}/bin/xkbcomp ${../../files/neoqwertz.xkb} $out
- '';
-in {
- imports = [
- ./basesystem.nix
- ../../env.nix
- ../../nix.nix
- ../../packages.nix
- ../../users.nix
- ../../zsh.nix
- ../../flatpak.nix # Mainly for minecraft
-
- # Desktop Environment to use
- ../../desktop/gnome.nix
- ];
-
- services = {
- printing.enable = true;
- xserver = {
- layout = "de";
- #xkbVariant = ",neo";
- xkbOptions = "grp:win_space_toggle";
- displayManager.sessionCommands = "${pkgs.xorg.xkbcomp}/bin/xkbcomp ${compiledLayout} $DISPLAY";
- };
- pipewire = {
- enable = true;
- alsa.enable = true;
- alsa.support32Bit = true;
- pulse.enable = true;
- jack.enable = true;
- };
- };
-
- hardware = {
- bluetooth.enable = true;
- pulseaudio.enable = false;
- };
- security.rtkit.enable = true;
-
- environment.systemPackages = [pkgs.xorg.xkbcomp];
-
- i18n.defaultLocale = "en_US.UTF-8";
-
- networking = {
- hostName = "thinklappi";
- nameservers = ["2620:fe::fe" "2620:fe::9" "9.9.9.9" "149.112.112.112"];
- networkmanager = {
- enable = true;
- dns = "none";
- };
- };
-
- time.timeZone = "Europe/Berlin";
-
- console = {
- font = "Lat2-Terminus16";
- keyMap = "de";
- #useXkbConfig = true; # use xkbOptions in tty.
- };
-
- programs.ssh.startAgent = true;
-
- system.stateVersion = "23.05";
-}