nix machine / user configurations

style: format

Changed files
+11 -7
pkgs-set
users
+1 -1
pkgs-set/pkgs/zen-browser.nix
···
-
{ pkgs, inputs, ... }: (import inputs.zen-browser {inherit pkgs;}).twilight
···
+
{ pkgs, inputs, ... }: (import inputs.zen-browser { inherit pkgs; }).twilight
+1 -1
users/mayer/default.nix
···
nixosConfig = globalAttrs.config;
in
-
{
users.users.mayer = {
isNormalUser = true;
createHome = true;
···
nixosConfig = globalAttrs.config;
in
+
{
users.users.mayer = {
isNormalUser = true;
createHome = true;
+1 -1
users/mayer/stylix.nix
···
...
}:
{
-
imports = [(import inputs.stylix).homeModules.stylix];
stylix.image = ./wallpaper.png;
stylix.polarity = "dark";
···
...
}:
{
+
imports = [ (import inputs.stylix).homeModules.stylix ];
stylix.image = ./wallpaper.png;
stylix.polarity = "dark";
+5 -2
users/modules/sway/default.nix
···
config = {
bars = [ ];
gaps.smartBorders = "on";
-
menu = mkRofiCmd ["-show" "drun"];
modifier = "Mod4";
terminal = config.settings.terminal.binary;
startup = [
-
{command = "mkdir -p ${config.home.homeDirectory}/shots";}
];
keybindings =
let
···
config = {
bars = [ ];
gaps.smartBorders = "on";
+
menu = mkRofiCmd [
+
"-show"
+
"drun"
+
];
modifier = "Mod4";
terminal = config.settings.terminal.binary;
startup = [
+
{ command = "mkdir -p ${config.home.homeDirectory}/shots"; }
];
keybindings =
let
+3 -2
users/modules/zen/default.nix
···
-
{terra, ...}: {
-
home.packages = [terra.zen-browser];
}
···
+
{ terra, ... }:
+
{
+
home.packages = [ terra.zen-browser ];
}