mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-04-19 11:34:07 +02:00
add usb stick device
This commit is contained in:
parent
530a9d9d13
commit
556ed595dd
2 changed files with 64 additions and 0 deletions
63
systems/copy-pasta/default.nix
Normal file
63
systems/copy-pasta/default.nix
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
nixos-hardware,
|
||||||
|
self,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
nixos-hardware.nixosModules.common-cpu-intel
|
||||||
|
#nixos-hardware.nixosModules.common-gpu-nvidia
|
||||||
|
nixos-hardware.nixosModules.common-pc
|
||||||
|
self.inputs.srvos.nixosModules.desktop
|
||||||
|
];
|
||||||
|
|
||||||
|
#facter.reportPath = ./facter.json;
|
||||||
|
|
||||||
|
jopejoe1 = {
|
||||||
|
audio = {
|
||||||
|
enable = true;
|
||||||
|
sennheiser-hd-660s = true;
|
||||||
|
};
|
||||||
|
local.enable = true;
|
||||||
|
nix.enable = true;
|
||||||
|
plasma.enable = true;
|
||||||
|
ssh.enable = true;
|
||||||
|
sway.enable = true;
|
||||||
|
gui.enable = true;
|
||||||
|
keyboard = {
|
||||||
|
enable = true;
|
||||||
|
layout = "de";
|
||||||
|
};
|
||||||
|
user = {
|
||||||
|
jopejoe1.enable = true;
|
||||||
|
root.enable = true;
|
||||||
|
};
|
||||||
|
boot.systemd.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
||||||
|
hardware = {
|
||||||
|
graphics = {
|
||||||
|
enable = true;
|
||||||
|
enable32Bit = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
picard
|
||||||
|
asunder
|
||||||
|
(ffmpeg-full.override {
|
||||||
|
#withTensorflow = true;
|
||||||
|
withUnfree = true;
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
xwayland.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -34,4 +34,5 @@ in
|
||||||
ebisu = mkSystem "x86_64-unknown-linux-gnu" "ebisu";
|
ebisu = mkSystem "x86_64-unknown-linux-gnu" "ebisu";
|
||||||
hetzner = mkSystem "x86_64-unknown-linux-gnu" "hetzner";
|
hetzner = mkSystem "x86_64-unknown-linux-gnu" "hetzner";
|
||||||
zap = mkSystem "x86_64-unknown-linux-gnu" "zap";
|
zap = mkSystem "x86_64-unknown-linux-gnu" "zap";
|
||||||
|
copy-pasta = mkSystem "x86_64-unknown-linux-gnu" "copy-pasta";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue