Compare commits
2 commits
8db3b7cc1b
...
4d4a007a00
Author | SHA1 | Date | |
---|---|---|---|
4d4a007a00 | |||
da55e963be |
4 changed files with 30 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -18,12 +18,33 @@
|
||||||
../nix-os/account.nix
|
../nix-os/account.nix
|
||||||
../nix-os/xdg-default-apps.nix
|
../nix-os/xdg-default-apps.nix
|
||||||
../nix-os/services/nix-binary-cache.nix
|
../nix-os/services/nix-binary-cache.nix
|
||||||
|
../nix-os/udev.nix
|
||||||
|
|
||||||
|
(builtins.fetchTarball "https://github.com/nix-community/nixos-vscode-server/tarball/fc900c16efc6a5ed972fb6be87df018bcf3035bc")
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
networking.hostName = "wroclaw-main";
|
||||||
|
|
||||||
|
services.xrdp.enable = true;
|
||||||
|
users.groups."tsusers".members = [ "wroclaw" ];
|
||||||
|
|
||||||
|
services.printing.drivers = with pkgs; [
|
||||||
|
hplip
|
||||||
|
];
|
||||||
|
|
||||||
|
# nixos-vscode-server module needs this
|
||||||
|
programs.nix-ld.enable = true;
|
||||||
|
services.vscode-server = {
|
||||||
|
enable = true;
|
||||||
|
extraRuntimeDependencies = with pkgs; [
|
||||||
|
docker
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
system.stateVersion = "23.05";
|
system.stateVersion = "23.05";
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
../nix-os/desktopManagers/gnome.nix
|
../nix-os/desktopManagers/gnome.nix
|
||||||
../nix-os/displayManagers/gdm.nix
|
../nix-os/displayManagers/gdm.nix
|
||||||
|
../nix-os/udev.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
|
@ -14,5 +14,6 @@
|
||||||
../nix-os/adb.nix
|
../nix-os/adb.nix
|
||||||
../nix-os/account.nix
|
../nix-os/account.nix
|
||||||
../nix-os/xdg-default-apps.nix
|
../nix-os/xdg-default-apps.nix
|
||||||
|
../nix-os/udev.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
5
nix-os/udev.nix
Normal file
5
nix-os/udev.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
hardware.ledger.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue