Compare commits

...

3 Commits

10 changed files with 28 additions and 14 deletions

18
flake.lock generated
View File

@@ -133,11 +133,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1722936497, "lastModified": 1723015306,
"narHash": "sha256-UBst8PkhY0kqTgdKiR8MtTBt4c1XmjJoOV11efjsC/o=", "narHash": "sha256-jQnFEtH20/OsDPpx71ntZzGdRlpXhUENSQCGTjn//NA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "a6c743980e23f4cef6c2a377f9ffab506568413a", "rev": "b3d5ea65d88d67d4ec578ed11d4d2d51e3de525e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -256,11 +256,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1722925425, "lastModified": 1723192118,
"narHash": "sha256-BXUYNBaG5KF+h8aU7p/4HUxGK1G42Ji/GK+KkC3bntU=", "narHash": "sha256-juQM/w6GY8aHQCBazvyMEPlfnt4pB+ja7WDQOQQYyEY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "e48ce785d9e72c0106319d93e23c5579336ffe33", "rev": "c46bd820adabaf23acbccbbd226b1941566acb51",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -299,11 +299,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1722804745, "lastModified": 1723141065,
"narHash": "sha256-l6N3QaiDqN2QmHDAxjczQPLPCTv+Kp7PsrtJBltmhTo=", "narHash": "sha256-6HD3Cx4KofX3jyWpZK1Nt1RmnPs2tD4HQLm3Ytk+htk=",
"owner": "nix-community", "owner": "nix-community",
"repo": "plasma-manager", "repo": "plasma-manager",
"rev": "61d9342fb471cd3c45a047406428fba7b6fb49ad", "rev": "5ab818b79ba5c6651209cc1c1d19afe6c9046ed4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -1,8 +1,8 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
imports = [ imports = [
./components/nethack.nix ./modules/nethack.nix
./components/firefox.nix ./modules/firefox.nix
]; ];
programs = { programs = {

View File

@@ -1,6 +1,6 @@
{ {
imports = [ imports = [
./components/hyprland.nix ./modules/hyprland.nix
./components/plasma.nix ./modules/plasma.nix
]; ];
} }

View File

@@ -9,6 +9,6 @@
}; };
home.file = { home.file = {
".config/awesome/rc.lua".source = ./components/awesomerc.lua; ".config/awesome/rc.lua".source = ./resources/awesomerc.lua;
}; };
} }

View File

@@ -12,6 +12,20 @@ in
services.openssh.enable = true; services.openssh.enable = true;
# Router shared filesystem
fileSystems."/home/andrey/Public" = {
device = "root@192.168.2.1:/mnt/sda1";
fsType = "sshfs";
options = [
"nodev"
"noatime"
"allow_other"
"reconnect"
"IdentityFile=/home/andrey/.ssh/id_ed25519"
];
};
# l10n and i8n # l10n and i8n
time.timeZone = "Europe/Riga"; time.timeZone = "Europe/Riga";
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";