nix machine / user configurations

style: format

Changed files
+11 -7
pkgs-set
users
+1 -1
pkgs-set/pkgs/zen-browser.nix
··· 1 - { pkgs, inputs, ... }: (import inputs.zen-browser {inherit pkgs;}).twilight 1 + { pkgs, inputs, ... }: (import inputs.zen-browser { inherit pkgs; }).twilight
+1 -1
users/mayer/default.nix
··· 10 10 11 11 nixosConfig = globalAttrs.config; 12 12 in 13 - { 13 + { 14 14 users.users.mayer = { 15 15 isNormalUser = true; 16 16 createHome = true;
+1 -1
users/mayer/stylix.nix
··· 7 7 ... 8 8 }: 9 9 { 10 - imports = [(import inputs.stylix).homeModules.stylix]; 10 + imports = [ (import inputs.stylix).homeModules.stylix ]; 11 11 12 12 stylix.image = ./wallpaper.png; 13 13 stylix.polarity = "dark";
+5 -2
users/modules/sway/default.nix
··· 30 30 config = { 31 31 bars = [ ]; 32 32 gaps.smartBorders = "on"; 33 - menu = mkRofiCmd ["-show" "drun"]; 33 + menu = mkRofiCmd [ 34 + "-show" 35 + "drun" 36 + ]; 34 37 modifier = "Mod4"; 35 38 terminal = config.settings.terminal.binary; 36 39 startup = [ 37 - {command = "mkdir -p ${config.home.homeDirectory}/shots";} 40 + { command = "mkdir -p ${config.home.homeDirectory}/shots"; } 38 41 ]; 39 42 keybindings = 40 43 let
+3 -2
users/modules/zen/default.nix
··· 1 - {terra, ...}: { 2 - home.packages = [terra.zen-browser]; 1 + { terra, ... }: 2 + { 3 + home.packages = [ terra.zen-browser ]; 3 4 }