about summary refs log tree commit diff
path: root/hosts/luna
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2024-12-30 11:35:14 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2024-12-30 11:35:14 +0100
commitdce2c3c26a2ff9770bbba2a00471c03ab321c472 (patch)
tree91ce56182bab4dee87fd663ea70880446a15f7e7 /hosts/luna
parentFont: Change font style pt 1000 (diff)
downloadnixos-config-dce2c3c26a2ff9770bbba2a00471c03ab321c472.tar.gz
nixos-config-dce2c3c26a2ff9770bbba2a00471c03ab321c472.tar.bz2
nixos-config-dce2c3c26a2ff9770bbba2a00471c03ab321c472.zip
fmt
Diffstat (limited to 'hosts/luna')
-rw-r--r--hosts/luna/default.nix16
-rw-r--r--hosts/luna/home.nix38
2 files changed, 35 insertions, 19 deletions
diff --git a/hosts/luna/default.nix b/hosts/luna/default.nix
index 2fde132..0bb60f6 100644
--- a/hosts/luna/default.nix
+++ b/hosts/luna/default.nix
@@ -1,6 +1,14 @@
-{ config, pkgs, lib, secrets, hostname, inputs, user, ... }: {
-
-  imports = [ ];
+{
+  config,
+  pkgs,
+  lib,
+  secrets,
+  hostname,
+  inputs,
+  user,
+  ...
+}: {
+  imports = [];
 
   services = {
     # Configure keymap in X11
@@ -25,6 +33,4 @@
 
   environment.systemPackages = with pkgs; [
   ];
-
 }
-
diff --git a/hosts/luna/home.nix b/hosts/luna/home.nix
index 1169b3c..b230601 100644
--- a/hosts/luna/home.nix
+++ b/hosts/luna/home.nix
@@ -1,12 +1,23 @@
-{ config, lib, pkgs, inputs, user, hostname, location, secrets, dotfiles, ... }:
 {
-  home.packages = with pkgs; [
-    xorg.xmodmap
-    trackma
-    adl
-  ] ++
-  (with pkgs.custom; [
-  ]);
+  config,
+  lib,
+  pkgs,
+  inputs,
+  user,
+  hostname,
+  location,
+  secrets,
+  dotfiles,
+  ...
+}: {
+  home.packages = with pkgs;
+    [
+      xorg.xmodmap
+      trackma
+      adl
+    ]
+    ++ (with pkgs.custom; [
+      ]);
 
   programs.firefox.profiles.default.settings = {
     "gfx.webrender.all" = true;
@@ -38,12 +49,12 @@
     '';
 
     "sxhkd/sxhkdrc".text =
-      builtins.readFile "${dotfiles}/sxhkd/xmonad" +
-      builtins.readFile "${dotfiles}/sxhkd/base" +
-      ''
-      
+      builtins.readFile "${dotfiles}/sxhkd/xmonad"
+      + builtins.readFile "${dotfiles}/sxhkd/base"
+      + ''
+
         #enter and leave game mode
-        alt + shift + F11: ctrl + shift + F11 
+        alt + shift + F11: ctrl + shift + F11
           pkill -ALRM sxhkd
 
         # Make sxhkd reload its configuration files
@@ -158,5 +169,4 @@
     ! bind Super+L to search
     keycode  133 = XF86Search
   '';
-
 }