resuscitate thinky

This commit is contained in:
Cyryl Płotnicki 2023-06-19 22:34:51 +02:00
parent 2f84aa509a
commit 0edb2ce421
5 changed files with 12 additions and 11 deletions

View file

@ -10,8 +10,9 @@
../../gui
../../libvirt.nix
../../mercurial
../../vim
../../sdr.nix
../../vim
../../zsh
];
fileSystems."/" = { options = [ "compress=zstd" ]; };

View file

@ -1,20 +1,17 @@
{
config,
pkgs,
...
}: {
{ config, pkgs, ... }: {
networking.hostName = "thinky";
imports = [
./hardware-configuration.nix
../../backups.nix
../../boot.nix
../../distributed-builds.nix
../../gfx-intel.nix
../../git
../../gui
../../i3
../../mercurial
../../vim
../../zsh
];
time.timeZone = "Europe/Warsaw";
@ -27,7 +24,7 @@
algorithm = "zstd";
memoryPercent = 50;
};
home-manager.users.cyryl = {...}: {
imports = [../../home-manager/programs/termite.nix];
home-manager.users.cyryl = { ... }: {
imports = [ ../../home-manager/programs/termite.nix ];
};
}

View file

@ -13,7 +13,7 @@ in {
home.username = username;
home.homeDirectory = lib.mkDefault "/home/${username}";
home.stateVersion = "22.11";
home.stateVersion = "23.05";
programs.home-manager.enable = true;
imports = [
@ -26,6 +26,5 @@ in {
./programs/newsboat.nix
./programs/ssh.nix
./programs/tmux.nix
./programs/zsh.nix
];
}

4
nixos/zsh/default.nix Normal file
View file

@ -0,0 +1,4 @@
{ config, pkgs, lib, ... }: {
programs.zsh.enable = true;
home-manager.users.cyryl = { ... }: { imports = [ ./home.nix ]; };
}