diff options
author | Linux User <lx@alpine.my.domain> | 2023-04-03 16:57:57 +0200 |
---|---|---|
committer | Linux User <lx@alpine.my.domain> | 2023-04-03 16:57:57 +0200 |
commit | 7183e0e9c06835b3b1591ce138eb11f29e98d0a1 (patch) | |
tree | 4048d4e081567ad5674d87cbf40329ae8bfa1c6a /rootless-nixos | |
parent | 9ca1411a38925cb0534020a1efbc4ea57eec5cfe (diff) | |
download | user-config-7183e0e9c06835b3b1591ce138eb11f29e98d0a1.tar.gz user-config-7183e0e9c06835b3b1591ce138eb11f29e98d0a1.zip |
update rootless stuff
Diffstat (limited to 'rootless-nixos')
-rw-r--r-- | rootless-nixos/configuration.nix | 14 | ||||
-rw-r--r-- | rootless-nixos/ssh_config | 3 |
2 files changed, 10 insertions, 7 deletions
diff --git a/rootless-nixos/configuration.nix b/rootless-nixos/configuration.nix index a8fcf9c..6e2a2d3 100644 --- a/rootless-nixos/configuration.nix +++ b/rootless-nixos/configuration.nix @@ -105,19 +105,22 @@ in home-manager.users.lx = { home.file = { - ".ssh/config".source = ./ssh_config; + ".ssh/config".source = ../ssh/config; ".config/tmux/tmux.conf".source = ../tmux/tmux.conf; ".vim/swp/emptydir".text = ""; ".vim/backup/emptydir".text = ""; ".config/sx/sxrc" = { - text = "${pkgs.icewm}/bin/icewm-session"; + text = '' + setxkbmap fr + ${pkgs.icewm}/bin/icewm-session + ''; executable = true; }; ".config/icewm/preferences".text = '' TerminalCommand="st" ''; ".config/icewm/keys".text = '' - key "Super+Enter" st + key "Super+Enter" st -f monospace-12pt ''; }; programs.vim = { @@ -135,12 +138,15 @@ in gnumake htop git + tmux # GUI st dillo links2 - #netsurf + pcmanfm + qutebrowser + netsurf.browser ]; programs.vim.defaultEditor = true; diff --git a/rootless-nixos/ssh_config b/rootless-nixos/ssh_config deleted file mode 100644 index 58bd4a3..0000000 --- a/rootless-nixos/ssh_config +++ /dev/null @@ -1,3 +0,0 @@ -Host adnab.me - User katchup - Port 2022 |