Merge remote-tracking branch 'origin/server-config'
This commit is contained in:
commit
62493285d2
65 changed files with 229 additions and 83 deletions
7
users/willifan/Lenni/default.nix
Normal file
7
users/willifan/Lenni/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./auto-cpufreq.nix
|
||||
./backlight.nix
|
||||
];
|
||||
}
|
4
users/willifan/Puenktchen/default.nix
Normal file
4
users/willifan/Puenktchen/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
}
|
15
users/willifan/common/default.nix
Normal file
15
users/willifan/common/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, home-manager, ... }:
|
||||
{
|
||||
imports = [
|
||||
./envvar.nix
|
||||
./git.nix
|
||||
./hyfetch.nix
|
||||
./locales.nix
|
||||
#./ssh.nix
|
||||
./syncthing.nix
|
||||
./user.nix
|
||||
#./zsh.nix
|
||||
];
|
||||
|
||||
home-manager.users.willifan.home.stateVersion = "23.11";
|
||||
}
|
|
@ -1,31 +1,8 @@
|
|||
{ pkgs, home-manager, ... }:
|
||||
{ pkgs, hostname, type, ... }:
|
||||
{
|
||||
imports = [
|
||||
./graphical
|
||||
|
||||
./applications.nix
|
||||
./auto-cpufreq.nix
|
||||
./envvar.nix
|
||||
./git.nix
|
||||
./hyfetch.nix
|
||||
./locales.nix
|
||||
#./ssh.nix
|
||||
./syncthing.nix
|
||||
./udev.nix
|
||||
./user.nix
|
||||
#./zsh.nix
|
||||
./common
|
||||
./${type}
|
||||
./${hostname}
|
||||
];
|
||||
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = rec {
|
||||
initial_session = {
|
||||
command = ''Hyprland'';
|
||||
user = "willifan";
|
||||
};
|
||||
default_session = initial_session;
|
||||
};
|
||||
};
|
||||
|
||||
home-manager.users.willifan.home.stateVersion = "23.11";
|
||||
}
|
|
@ -7,8 +7,6 @@
|
|||
jq
|
||||
xorg.xrandr
|
||||
|
||||
btop
|
||||
|
||||
feh
|
||||
|
||||
enpass
|
13
users/willifan/desktop/autologin.nix
Normal file
13
users/willifan/desktop/autologin.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = rec {
|
||||
initial_session = {
|
||||
command = ''Hyprland'';
|
||||
user = "willifan";
|
||||
};
|
||||
default_session = initial_session;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, home-manager-unstable, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
|
@ -9,6 +9,8 @@
|
|||
./theme
|
||||
./web
|
||||
|
||||
./applications.nix
|
||||
./autologin.nix
|
||||
./kitty.nix
|
||||
./thunar.nix
|
||||
];
|
7
users/willifan/desktop/hyprland/default.nix
Normal file
7
users/willifan/desktop/hyprland/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, hostname, ... }:
|
||||
{
|
||||
imports = [
|
||||
./common
|
||||
./${hostname}
|
||||
];
|
||||
}
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, home-manager-unstable, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
|
@ -1,7 +0,0 @@
|
|||
{ pkgs, configVars, ... }:
|
||||
{
|
||||
imports = [
|
||||
./common
|
||||
./${configVars.hostname}
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue