feat: some tmux configuration

This commit is contained in:
dprin 2026-03-28 09:57:34 +01:00
parent e3580500ac
commit e2fab632ef
5 changed files with 23 additions and 4 deletions

View file

@ -35,6 +35,13 @@
nix = { nix = {
settings.experimental-features = [ "nix-command" "flakes" ]; settings.experimental-features = [ "nix-command" "flakes" ];
optimise.automatic = true;
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
}; };
home-manager.users.prever.home.stateVersion = "25.11"; home-manager.users.prever.home.stateVersion = "25.11";

7
flake.lock generated
View file

@ -7,15 +7,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1774647770, "lastModified": 1774559029,
"narHash": "sha256-UNNi14XiqRWWjO8ykbFwA5wRwx7EscsC+GItOVpuGjc=", "narHash": "sha256-deix7yg3j6AhjMPnFDCmWB3f83LsajaaULP5HH2j34k=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "02371c05a04a2876cf92e2d67a259e8f87399068", "rev": "a0bb0d11514f92b639514220114ac8063c72d0a3",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-25.11",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }

View file

@ -5,7 +5,7 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };

View file

@ -3,5 +3,6 @@
imports = [ imports = [
./fish.nix ./fish.nix
./nginx.nix ./nginx.nix
./tmux.nix
]; ];
} }

10
modules/tmux.nix Normal file
View file

@ -0,0 +1,10 @@
{...}:
{
home-manager.users.perver = {
programs.tmux = {
enable = true;
newSession = true;
shell = "fish";
};
};
}