1
0
Fork 0

Compare commits

..

6 commits

Author SHA1 Message Date
5810764093 Added Sweet Home 3D
Sweet home 3D is a CAD solution to create a virtual representation of a
flat or house.
2024-08-11 16:59:29 +02:00
809347f6e3 Update 2024-08-11 16:54:34 +02:00
3aabaf251b Enabled printer discovery and moved Canon drivers to right place
See: https://wiki.nixos.org/wiki/Printing
2024-08-07 21:43:30 +02:00
8fc8788d5a Added CUPS back-end for Canon printers 2024-08-07 21:29:49 +02:00
cc64d31305 Added firefox and nix-output-monitor 2024-08-07 21:25:41 +02:00
ad263cdc96 Update 2024-08-04 15:08:28 +02:00
3 changed files with 29 additions and 12 deletions

24
flake.lock generated
View file

@ -170,11 +170,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1722203588, "lastModified": 1723015306,
"narHash": "sha256-91V5FMSQ4z9bkhTCf0f86Zjw0bh367daSf0mzCIW0vU=", "narHash": "sha256-jQnFEtH20/OsDPpx71ntZzGdRlpXhUENSQCGTjn//NA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "792757f643cedc13f02098d8ed506d82e19ec1da", "rev": "b3d5ea65d88d67d4ec578ed11d4d2d51e3de525e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -206,11 +206,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1722114937, "lastModified": 1723310128,
"narHash": "sha256-MOZ9woPwdpFJcHx3wic2Mlw9aztdKjMnFT3FaeLzJkM=", "narHash": "sha256-IiH8jG6PpR4h9TxSGMYh+2/gQiJW9MwehFvheSb5rPc=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "e67b60fb1b2c3aad2202d95b91d4c218cf2a4fdd", "rev": "c54cf53e022b0b3c1d3b8207aa0f9b194c24f0cf",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -222,11 +222,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1722062969, "lastModified": 1723175592,
"narHash": "sha256-QOS0ykELUmPbrrUGmegAUlpmUFznDQeR4q7rFhl8eQg=", "narHash": "sha256-M0xJ3FbDUc4fRZ84dPGx5VvgFsOzds77KiBMW/mMTnI=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b73c2221a46c13557b1b3be9c2070cc42cf01eb3", "rev": "5e0ca22929f3342b19569b21b2f3462f053e497b",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -275,11 +275,11 @@
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2"
}, },
"locked": { "locked": {
"lastModified": 1721989207, "lastModified": 1722946882,
"narHash": "sha256-APKQeMMdh1O1W3OnxEvNfHNBiE4eRvEN6rosFr2dLHE=", "narHash": "sha256-mxtnMye8gs82tdQbVC+g6v3aPOZlH150f9WyntHIkTg=",
"owner": "danth", "owner": "danth",
"repo": "stylix", "repo": "stylix",
"rev": "b9de20c76e8d5c13cf2304d23cf589803c311670", "rev": "5853f1a8bd072f2ebabfc3de3973084353cf6f1e",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -66,6 +66,16 @@
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;
services.printing.drivers = with pkgs; [
cups-bjnp # CUPS back-end for Canon printers
];
# Enable autodiscovery of network printers
services.avahi = {
enable = true;
nssmdns4 = true;
openFirewall = true;
};
# Enable sound with pipewire. # Enable sound with pipewire.
#sound.enable = true; #sound.enable = true;

View file

@ -35,6 +35,8 @@
btop btop
# AppImage is needed at least for cura slicer # AppImage is needed at least for cura slicer
appimage-run appimage-run
# Processes output of Nix commands to show helpful and pretty information
nix-output-monitor
# Terminal # Terminal
alacritty alacritty
@ -59,6 +61,8 @@
nextcloud-client nextcloud-client
# Internet # Internet
firefox
#ladybird
amfora # Gemini terminal browser amfora # Gemini terminal browser
lagrange # Graphical Gemini client lagrange # Graphical Gemini client
linphone linphone
@ -119,6 +123,9 @@
p7zip p7zip
xz xz
# Others
sweethome3d.application # CAD for home
# # It is sometimes useful to fine-tune packages, for example, by applying # # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the # # overrides. You can do that directly here, just don't forget the
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of # # parentheses. Maybe you want to install Nerd Fonts with a limited number of