summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-05-11 17:15:05 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-05-11 17:15:05 -0500
commitf6693f606a7258044b9629eadf805b1301747a9d (patch)
treee61c940ecb9883dec78ad3eb3d5260adee60236d /hosts
parentb3047b8b1f7977156dff6b6a345472cea5687bc7 (diff)
downloadnixos-f6693f606a7258044b9629eadf805b1301747a9d.tar.xz
nixos-f6693f606a7258044b9629eadf805b1301747a9d.zip
move libreX60 home into its own file
Diffstat (limited to 'hosts')
-rw-r--r--hosts/libreX60/configuration.nix24
-rw-r--r--hosts/libreX60/home.nix22
2 files changed, 25 insertions, 21 deletions
diff --git a/hosts/libreX60/configuration.nix b/hosts/libreX60/configuration.nix
index 74b7012..bf4f388 100644
--- a/hosts/libreX60/configuration.nix
+++ b/hosts/libreX60/configuration.nix
@@ -13,8 +13,9 @@
grub.biosDevice = "/dev/sda";
};
+ # NOTE libre kernel removed, check back later
# Use libre kernel
- boot.kernelPackages = pkgs.linuxPackages-libre;
+ #boot.kernelPackages = pkgs.linuxPackages-libre;
# Enable common options
_archetypes = {
@@ -39,26 +40,7 @@
# Configure home
home-manager.users.timmy = {
- gtk._mintTheme = {
- dark = true;
- color = "Red";
- icons.color = "Red";
- };
- fonts.fontconfig.defaultFonts.monospace = [ "TamzenForPowerline" ];
- gtk = {
- font.name = "monospace";
- font.size = 8;
- cursorTheme.size = 24;
- };
- programs._st = {
- enable = true;
- font = {
- name = "TamzenForPowerline";
- attrs = {
- pixelsize = 14;
- };
- };
- };
+ imports = [ ./home.nix ];
};
system.stateVersion = "24.11";
diff --git a/hosts/libreX60/home.nix b/hosts/libreX60/home.nix
new file mode 100644
index 0000000..b537fc2
--- /dev/null
+++ b/hosts/libreX60/home.nix
@@ -0,0 +1,22 @@
+{
+ gtk._mintTheme = {
+ dark = true;
+ color = "Red";
+ icons.color = "Red";
+ };
+ fonts.fontconfig.defaultFonts.monospace = [ "TamzenForPowerline" ];
+ gtk = {
+ font.name = "monospace";
+ font.size = 8;
+ cursorTheme.size = 24;
+ };
+ programs._st = {
+ enable = true;
+ font = {
+ name = "TamzenForPowerline";
+ attrs = {
+ pixelsize = 14;
+ };
+ };
+ };
+}