fixes and added tau
This commit is contained in:
parent
fd6bf32f93
commit
979956ff9e
36
flake.lock
36
flake.lock
@ -7,11 +7,11 @@
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1680266963,
|
||||
"narHash": "sha256-IW/lzbUCOcldLHWHjNSg1YoViDnZOmz0ZJL7EH9OkV8=",
|
||||
"lastModified": 1683754942,
|
||||
"narHash": "sha256-L+Bj8EL4XLmODRIuOkk9sI6FDECVzK+C8jeZFv7q6eY=",
|
||||
"owner": "LnL7",
|
||||
"repo": "nix-darwin",
|
||||
"rev": "99d4187d11be86b49baa3a1aec0530004072374f",
|
||||
"rev": "252541bd05a7f55f3704a3d014ad1badc1e3360d",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -24,15 +24,14 @@
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
],
|
||||
"utils": "utils"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1680389554,
|
||||
"narHash": "sha256-+8FUmS4GbDMynQErZGXKg+wU76rq6mI5fprxFXFWKSM=",
|
||||
"lastModified": 1683989410,
|
||||
"narHash": "sha256-puF/QsIkp4ch0sf6M5mNzbdZtYcq2MJHcKre9wJ3ZYo=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "ddd8866c0306c48f465e7f48432e6f1ecd1da7f8",
|
||||
"rev": "6702b22b9805bc1879715d4111e3764cd4237aed",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -43,11 +42,11 @@
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1680487167,
|
||||
"narHash": "sha256-9FNIqrxDZgSliGGN2XJJSvcDYmQbgOANaZA4UWnTdg4=",
|
||||
"lastModified": 1683777345,
|
||||
"narHash": "sha256-V2p/A4RpEGqEZussOnHYMU6XglxBJGCODdzoyvcwig8=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "53dad94e874c9586e71decf82d972dfb640ef044",
|
||||
"rev": "635a306fc8ede2e34cb3dd0d6d0a5d49362150ed",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
@ -61,21 +60,6 @@
|
||||
"home-manager": "home-manager",
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
},
|
||||
"utils": {
|
||||
"locked": {
|
||||
"lastModified": 1676283394,
|
||||
"narHash": "sha256-XX2f9c3iySLCw54rJ/CZs+ZK6IQy7GXNY4nSOyu2QG4=",
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"rev": "3db36a8b464d0c4532ba1c7dda728f4576d6d073",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "numtide",
|
||||
"repo": "flake-utils",
|
||||
"type": "github"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
|
37
flake.nix
37
flake.nix
@ -19,20 +19,32 @@
|
||||
config.allowUnfree = true;
|
||||
config.allowUnsupportedSystem = false;
|
||||
config.allowBroken = false;
|
||||
config.permittedInsecurePackages = [
|
||||
"libgcrypt-1.8.10"
|
||||
];
|
||||
overlays = import ./overlays.nix;
|
||||
system = "x86_64-linux";
|
||||
};
|
||||
|
||||
nixpkgs_aarch64 = import nixpkgs {
|
||||
nixpkgs_aarch64_darwin = import nixpkgs {
|
||||
config.allowUnfree = true;
|
||||
config.allowUnsupportedSystem = false;
|
||||
config.allowBroken = false;
|
||||
overlays = import ./overlays.nix;
|
||||
system = "aarch64-darwin";
|
||||
};
|
||||
|
||||
nixpkgs_aarch64_linux = import nixpkgs {
|
||||
config.allowUnfree = true;
|
||||
config.allowUnsupportedSystem = false;
|
||||
config.allowBroken = false;
|
||||
overlays = import ./overlays.nix;
|
||||
system = "aarch64-linux";
|
||||
};
|
||||
in
|
||||
{
|
||||
nixosConfigurations."MDesktop" = nixpkgs.lib.nixosSystem {
|
||||
nixosConfigurations."MDesktop" = nixpkgs.lib.nixosSystem
|
||||
{
|
||||
specialArgs = { inherit username; };
|
||||
pkgs = nixpkgs_x86_64;
|
||||
system = "x86_64-linux";
|
||||
@ -45,9 +57,23 @@
|
||||
] ++ utils.nixFilesIn ./systems/mdesktop;
|
||||
};
|
||||
|
||||
nixosConfigurations."tau" = nixpkgs.lib.nixosSystem
|
||||
{
|
||||
specialArgs = { inherit username; };
|
||||
pkgs = nixpkgs_aarch64_linux;
|
||||
system = "aarch64-linux";
|
||||
modules = [
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.users.${username}.imports = utils.nixFilesIn ./maddie/common ++ utils.nixFilesIn ./maddie/nixos;
|
||||
home-manager.extraSpecialArgs = { inherit username; pkgs = nixpkgs_aarch64_linux; };
|
||||
}
|
||||
] ++ utils.nixFilesIn ./systems/tau;
|
||||
};
|
||||
|
||||
darwinConfigurations."MMacBookPro" = darwin.lib.darwinSystem
|
||||
{
|
||||
pkgs = nixpkgs_aarch64;
|
||||
pkgs = nixpkgs_aarch64_darwin;
|
||||
specialArgs = { inherit username; };
|
||||
system = "aarch64-darwin";
|
||||
modules = [
|
||||
@ -55,13 +81,14 @@
|
||||
{
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.${username}.imports = utils.nixFilesIn ./maddie/common ++ utils.nixFilesIn ./maddie/macos;
|
||||
home-manager.extraSpecialArgs = { inherit username; pkgs = nixpkgs_aarch64; };
|
||||
home-manager.extraSpecialArgs = { inherit username; pkgs = nixpkgs_aarch64_darwin; };
|
||||
}
|
||||
] ++ utils.nixFilesIn ./systems/mmacbookpro;
|
||||
};
|
||||
|
||||
formatter.x86_64-linux = nixpkgs_x86_64.legacyPackages.x86_64-linux.nixpkgs-fmt;
|
||||
formatter.aarch64-darwin = nixpkgs_aarch64.legacyPackages.aarch64-darwin.nixpkgs-fmt;
|
||||
formatter.aarch64-darwin = nixpkgs_aarch64_darwin.legacyPackages.aarch64-darwin.nixpkgs-fmt;
|
||||
formatter.aarch64-linux = nixpkgs_aarch64_linux.legacyPackages.aarch64-linux.nixpkgs-fmt;
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
nodePackages.bash-language-server
|
||||
nodePackages.vim-language-server
|
||||
nodePackages.pyright
|
||||
rust-analyzer
|
||||
/* rust-analyzer */
|
||||
rnix-lsp
|
||||
universal-ctags
|
||||
];
|
||||
|
0
maddie/common/yt-dlp/ytdlp-music.sh
Normal file → Executable file
0
maddie/common/yt-dlp/ytdlp-music.sh
Normal file → Executable file
0
maddie/nixos/audio/volume.sh
Normal file → Executable file
0
maddie/nixos/audio/volume.sh
Normal file → Executable file
0
maddie/nixos/bosskey/bosskey.sh
Normal file → Executable file
0
maddie/nixos/bosskey/bosskey.sh
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-bluetooth
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-bluetooth
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-kdeconnect
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-kdeconnect
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-mount
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-mount
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-mpc
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-mpc
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-pass
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-pass
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-power
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-power
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-unicode
Normal file → Executable file
0
maddie/nixos/dmenu/dmenu-unicode
Normal file → Executable file
0
maddie/nixos/nsxiv/exec/key-handler
Normal file → Executable file
0
maddie/nixos/nsxiv/exec/key-handler
Normal file → Executable file
0
maddie/nixos/screenshot/sss.sh
Normal file → Executable file
0
maddie/nixos/screenshot/sss.sh
Normal file → Executable file
0
maddie/nixos/statusbar/sb-clock
Normal file → Executable file
0
maddie/nixos/statusbar/sb-clock
Normal file → Executable file
0
maddie/nixos/statusbar/sb-cpu
Normal file → Executable file
0
maddie/nixos/statusbar/sb-cpu
Normal file → Executable file
0
maddie/nixos/statusbar/sb-disk
Normal file → Executable file
0
maddie/nixos/statusbar/sb-disk
Normal file → Executable file
0
maddie/nixos/statusbar/sb-forecast
Normal file → Executable file
0
maddie/nixos/statusbar/sb-forecast
Normal file → Executable file
0
maddie/nixos/statusbar/sb-iplocate
Normal file → Executable file
0
maddie/nixos/statusbar/sb-iplocate
Normal file → Executable file
0
maddie/nixos/statusbar/sb-kernel
Normal file → Executable file
0
maddie/nixos/statusbar/sb-kernel
Normal file → Executable file
0
maddie/nixos/statusbar/sb-memory
Normal file → Executable file
0
maddie/nixos/statusbar/sb-memory
Normal file → Executable file
0
maddie/nixos/statusbar/sb-temp
Normal file → Executable file
0
maddie/nixos/statusbar/sb-temp
Normal file → Executable file
0
maddie/nixos/statusbar/sb-uptime
Normal file → Executable file
0
maddie/nixos/statusbar/sb-uptime
Normal file → Executable file
0
maddie/nixos/statusbar/sb-volume
Normal file → Executable file
0
maddie/nixos/statusbar/sb-volume
Normal file → Executable file
0
maddie/nixos/steam/steam-killer.sh
Normal file → Executable file
0
maddie/nixos/steam/steam-killer.sh
Normal file → Executable file
0
maddie/nixos/tabbed/tabbed-st
Normal file → Executable file
0
maddie/nixos/tabbed/tabbed-st
Normal file → Executable file
0
maddie/nixos/xob/styles.cfg
Normal file → Executable file
0
maddie/nixos/xob/styles.cfg
Normal file → Executable file
@ -1,9 +1,10 @@
|
||||
{ config, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# programs.gnupg.package = pkgs.gnupg22;
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
enableSSHSupport = false;
|
||||
pinentryFlavor = "gtk2";
|
||||
};
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ config, lib, ... }:
|
||||
|
||||
{
|
||||
system.stateVersion = "22.05";
|
||||
system.stateVersion = "23.05";
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
}
|
||||
|
@ -15,8 +15,8 @@
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
yubioath-flutter
|
||||
yubikey-personalization
|
||||
];
|
||||
/* environment.systemPackages = with pkgs; [ */
|
||||
/* yubioath-flutter */
|
||||
/* yubikey-personalization */
|
||||
/* ]; */
|
||||
}
|
||||
|
@ -40,13 +40,14 @@
|
||||
"sketch"
|
||||
|
||||
# Development
|
||||
"lapce"
|
||||
"zed"
|
||||
"neovide"
|
||||
"pycharm"
|
||||
"webstorm"
|
||||
"clion"
|
||||
"goland"
|
||||
"appcode"
|
||||
"datagrip"
|
||||
"android-studio"
|
||||
"fleet"
|
||||
"tower"
|
||||
|
5
systems/tau/android.nix
Normal file
5
systems/tau/android.nix
Normal file
@ -0,0 +1,5 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
programs.adb.enable = true;
|
||||
}
|
14
systems/tau/audio.nix
Normal file
14
systems/tau/audio.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
jack.enable = true;
|
||||
};
|
||||
}
|
6
systems/tau/bluetooth.nix
Normal file
6
systems/tau/bluetooth.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
hardware.bluetooth.enable = true;
|
||||
services.blueman.enable = true;
|
||||
}
|
6
systems/tau/boot.nix
Normal file
6
systems/tau/boot.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
boot.loader.grub.enable = false;
|
||||
boot.loader.generic-extlinux-compatible.enable = true;
|
||||
}
|
13
systems/tau/doas.nix
Normal file
13
systems/tau/doas.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{ config, username, ... }:
|
||||
|
||||
{
|
||||
security.sudo.enable = false;
|
||||
security.doas = {
|
||||
enable = true;
|
||||
extraRules = [{
|
||||
users = [ "${username}" ];
|
||||
keepEnv = true;
|
||||
persist = true;
|
||||
}];
|
||||
};
|
||||
}
|
6
systems/tau/firewall.nix
Normal file
6
systems/tau/firewall.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
# Disable the firewall altogether
|
||||
networking.firewall.enable = false;
|
||||
}
|
11
systems/tau/fonts.nix
Normal file
11
systems/tau/fonts.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
fonts.fonts = with pkgs; [
|
||||
nerdfonts
|
||||
font-awesome
|
||||
source-han-sans
|
||||
source-han-serif
|
||||
source-han-code-jp
|
||||
];
|
||||
}
|
9
systems/tau/gpg.nix
Normal file
9
systems/tau/gpg.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
pinentryFlavor = "gtk2";
|
||||
};
|
||||
}
|
13
systems/tau/locale.nix
Normal file
13
systems/tau/locale.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
# Time zone
|
||||
time.timeZone = "Europe/London";
|
||||
|
||||
# Internationalisation properties
|
||||
i18n.defaultLocale = "en_GB.UTF-8";
|
||||
console = {
|
||||
font = "Lat2-Terminus16";
|
||||
keyMap = "uk";
|
||||
};
|
||||
}
|
17
systems/tau/networking.nix
Normal file
17
systems/tau/networking.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ config, lib, ... }:
|
||||
|
||||
{
|
||||
# DHCP
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
|
||||
# Hostname
|
||||
networking.hostName = "tau";
|
||||
|
||||
# Enable wireless support & configuration
|
||||
networking.wireless.enable = true;
|
||||
networking.wireless.networks = {
|
||||
"BT-C5CPMR_5GEXT" = {
|
||||
psk = "hN3LtFrkp36bXc";
|
||||
};
|
||||
};
|
||||
}
|
16
systems/tau/nix.nix
Normal file
16
systems/tau/nix.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Enable flakes and nix-command
|
||||
nix = {
|
||||
package = pkgs.nixVersions.stable;
|
||||
settings = {
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
gc = {
|
||||
automatic = true;
|
||||
options = "--delete-older-than 7d";
|
||||
};
|
||||
};
|
||||
}
|
6
systems/tau/nixos.nix
Normal file
6
systems/tau/nixos.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ config, lib, ... }:
|
||||
|
||||
{
|
||||
system.stateVersion = "23.05";
|
||||
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
||||
}
|
9
systems/tau/openrazer.nix
Normal file
9
systems/tau/openrazer.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{ config, username, ... }:
|
||||
|
||||
{
|
||||
hardware.openrazer = {
|
||||
enable = true;
|
||||
users = [ "${username}" ];
|
||||
devicesOffOnScreensaver = false;
|
||||
};
|
||||
}
|
8
systems/tau/openrgb.nix
Normal file
8
systems/tau/openrgb.nix
Normal file
@ -0,0 +1,8 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.hardware.openrgb = {
|
||||
enable = true;
|
||||
package = pkgs.openrgb-with-all-plugins;
|
||||
};
|
||||
}
|
47
systems/tau/packages.nix
Normal file
47
systems/tau/packages.nix
Normal file
@ -0,0 +1,47 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# System-wide packages
|
||||
# I want these available for all users at all times
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Xorg packages
|
||||
xorg.xinit
|
||||
xorg.xkill
|
||||
xorg.xprop
|
||||
xorg.xwininfo
|
||||
xorg.xrandr
|
||||
xdotool
|
||||
xclip
|
||||
|
||||
# Processes
|
||||
killall
|
||||
appimage-run
|
||||
|
||||
# Filesystems
|
||||
dosfstools
|
||||
btrfs-progs
|
||||
ntfs3g
|
||||
exfatprogs
|
||||
libimobiledevice
|
||||
ifuse
|
||||
|
||||
# Archives
|
||||
zip
|
||||
unrar
|
||||
unzip
|
||||
p7zip
|
||||
|
||||
# Cli tools
|
||||
ripgrep
|
||||
wget
|
||||
fzf
|
||||
bat
|
||||
|
||||
# XDG
|
||||
xdg-utils
|
||||
xdg-user-dirs
|
||||
|
||||
# Git
|
||||
git
|
||||
];
|
||||
}
|
6
systems/tau/security.nix
Normal file
6
systems/tau/security.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.slock.enable = true;
|
||||
security.wrappers.slock.source = "${pkgs.slock.out}/bin/slock";
|
||||
}
|
6
systems/tau/services.nix
Normal file
6
systems/tau/services.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
# Misc services
|
||||
services.usbmuxd.enable = true;
|
||||
}
|
13
systems/tau/ssh.nix
Normal file
13
systems/tau/ssh.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PermitRootLogin = "no";
|
||||
PasswordAuthentication = false;
|
||||
KbdInteractiveAuthentication = false;
|
||||
};
|
||||
};
|
||||
programs.ssh.hostKeyAlgorithms = [ "sk-ssh-ed25519@openssh.com" "ssh-ed25519" ];
|
||||
}
|
42
systems/tau/syncthing.nix
Normal file
42
systems/tau/syncthing.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{ config, username, ... }:
|
||||
|
||||
{
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
user = "${username}";
|
||||
group = "users";
|
||||
dataDir = "/home/${username}";
|
||||
configDir = "/home/${username}/.config/syncthing";
|
||||
guiAddress = "0.0.0.0:8384";
|
||||
overrideFolders = true;
|
||||
overrideDevices = true;
|
||||
devices = {
|
||||
"M.Phone.Pixel" = { id = "WMGWVOU-DFZQSZO-46XQJQA-Q5XD5ZB-NDXK5SP-LXNAADH-Z2KJN4P-4P4UXA5"; };
|
||||
"M.MacBookPro" = { id = "A5HRCSI-RWYZ6GG-SCBZ2OJ-PG6T7VP-WKDN2VP-CNXIQ3B-VCJ7ZHO-MTV63QP"; };
|
||||
"Lambda" = { id = "ZYNSFWR-F3ZNDDT-66TSJWB-PRP3KQK-IWTTABU-GGWT5DL-RWC7VAE-LI5AXQQ"; };
|
||||
};
|
||||
folders = {
|
||||
"Documents" = {
|
||||
path = "/home/${username}/Documents";
|
||||
devices = [ "M.Phone.Pixel" "M.MacBookPro" ];
|
||||
};
|
||||
"Pictures" = {
|
||||
path = "/home/${username}/Pictures";
|
||||
devices = [ "M.Phone.Pixel" "M.MacBookPro" ];
|
||||
};
|
||||
"Videos" = {
|
||||
path = "/home/${username}/Videos";
|
||||
devices = [ "M.Phone.Pixel" "M.MacBookPro" ];
|
||||
};
|
||||
"Music" = {
|
||||
path = "/home/${username}/Music";
|
||||
devices = [ "M.Phone.Pixel" "M.MacBookPro" ];
|
||||
};
|
||||
"Android Camera" = {
|
||||
id = "pixel_7_pro_2qyx-photos";
|
||||
path = "/home/${username}/Pictures/DCIM";
|
||||
devices = [ "M.Phone.Pixel" "M.MacBookPro" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
8
systems/tau/systemd.nix
Normal file
8
systems/tau/systemd.nix
Normal file
@ -0,0 +1,8 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
# Stop systemd from hanging for ages
|
||||
systemd.extraConfig = ''
|
||||
DefaultTimeoutStopSec=10s
|
||||
'';
|
||||
}
|
11
systems/tau/users.nix
Normal file
11
systems/tau/users.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{ config, pkgs, username, ... }:
|
||||
|
||||
{
|
||||
users.users.${username} = {
|
||||
isNormalUser = true;
|
||||
shell = pkgs.zsh;
|
||||
description = "Madeleine";
|
||||
extraGroups = [ "adbusers" "dialout" "libvirtd" "plugdev" ];
|
||||
openssh.authorizedKeys.keyFiles = [ ../../maddie/common/ssh/id_ed25519_sk.pub ];
|
||||
};
|
||||
}
|
6
systems/tau/virtualisation.nix
Normal file
6
systems/tau/virtualisation.nix
Normal file
@ -0,0 +1,6 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
virtualisation.libvirtd.enable = true;
|
||||
programs.dconf.enable = true;
|
||||
}
|
17
systems/tau/xorg.nix
Normal file
17
systems/tau/xorg.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.xserver = {
|
||||
# Enable X11 windowing system
|
||||
enable = true;
|
||||
|
||||
# Set gb X11 keymap
|
||||
layout = "gb";
|
||||
xkbOptions = "eurosign:e";
|
||||
|
||||
# Use startx for starting window managers
|
||||
displayManager = {
|
||||
startx.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
22
systems/tau/yubikey.nix
Normal file
22
systems/tau/yubikey.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.pcscd.enable = true;
|
||||
services.udev.packages = [ pkgs.yubikey-personalization pkgs.android-udev-rules ];
|
||||
security.pam = {
|
||||
services = {
|
||||
login.u2fAuth = true;
|
||||
doas.u2fAuth = true;
|
||||
};
|
||||
yubico = {
|
||||
enable = true;
|
||||
mode = "challenge-response";
|
||||
control = "optional";
|
||||
};
|
||||
};
|
||||
|
||||
/* environment.systemPackages = with pkgs; [ */
|
||||
/* yubioath-flutter */
|
||||
/* yubikey-personalization */
|
||||
/* ]; */
|
||||
}
|
10
systems/tau/zsh.nix
Normal file
10
systems/tau/zsh.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
autosuggestions.enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
};
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
}
|
Loading…
Reference in New Issue
Block a user