lisa
This commit is contained in:
parent
083a00873f
commit
bbe9e68601
4 changed files with 15 additions and 15 deletions
|
|
@ -23,6 +23,7 @@
|
||||||
./system/btrbk.nix
|
./system/btrbk.nix
|
||||||
./system/yubikey.nix
|
./system/yubikey.nix
|
||||||
./system/alt.nix
|
./system/alt.nix
|
||||||
|
./system/lisa.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
romulus = nixpkgs.lib.nixosSystem {
|
romulus = nixpkgs.lib.nixosSystem {
|
||||||
|
|
|
||||||
16
home/alt.nix
16
home/alt.nix
|
|
@ -2,9 +2,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
home.username = "alt";
|
home.username = "alt";
|
||||||
home.homeDirectory = "/home/alt";
|
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config = {
|
config = {
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
|
|
@ -45,7 +43,9 @@
|
||||||
./desktop
|
./desktop
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./foot.nix
|
./foot.nix
|
||||||
|
./fish.nix
|
||||||
./tmux
|
./tmux
|
||||||
|
./nvim
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.nix-index = {
|
programs.nix-index = {
|
||||||
|
|
@ -66,16 +66,4 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.fish = {
|
|
||||||
enable = true;
|
|
||||||
shellInit = ''
|
|
||||||
set -gx EDITOR "nvim"
|
|
||||||
set -gx VISUAL "nvim"
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
home.shellAliases = {
|
|
||||||
v = "nvim";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
home = "/home/alt";
|
home = "/home/alt";
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
group = "users";
|
group = "users";
|
||||||
description = "Backup profile";
|
description = "Alt";
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
"networkmanager"
|
"networkmanager"
|
||||||
];
|
];
|
||||||
|
|
|
||||||
11
system/lisa.nix
Normal file
11
system/lisa.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
users.users.lisa = {
|
||||||
|
isNormalUser = true;
|
||||||
|
description = "Lisa";
|
||||||
|
extraGroups = [
|
||||||
|
"networkmanager"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue